home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / speed-text.scm < prev    next >
Text File  |  2009-12-15  |  4KB  |  102 lines

  1. ; Speed text
  2. ; Copyright (c) 1998 Austin Donnelly <austin@greenend.org.uk>
  3. ;
  4. ;
  5. ; Based on alien glow code from Adrian Likins
  6. ;
  7. ; This program is free software; you can redistribute it and/or modify
  8. ; it under the terms of the GNU General Public License as published by
  9. ; the Free Software Foundation; either version 2 of the License, or
  10. ; (at your option) any later version.
  11. ;
  12. ; This program is distributed in the hope that it will be useful,
  13. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. ; GNU General Public License for more details.
  16. ;
  17. ; You should have received a copy of the GNU General Public License
  18. ; along with this program; if not, write to the Free Software
  19. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20.  
  21.  
  22. (define (script-fu-speed-text string font font-size density text-color bg-color)
  23.   (let* (
  24.         (text-ext (gimp-text-get-extents-fontname string font-size PIXELS font))
  25.         (wid (+ (car text-ext) 20))
  26.         (hi  (+ (list-ref text-ext 1) 20))
  27.         (img (car (gimp-image-new wid hi RGB)))
  28.         (bg-layer (car (gimp-layer-new img wid hi  RGB-IMAGE "Background" 100 NORMAL-MODE)))
  29.         (text-layer (car (gimp-layer-new img wid hi  RGBA-IMAGE "Text layer" 100 NORMAL-MODE)))
  30.         (text-mask 0)
  31.         (saved-select 0)
  32.         (cell-size (/ font-size 8))
  33.         (grey (/ (* density 255) 100))
  34.         (saved-sel 0)
  35.         (text-mask 0)
  36.         )
  37.  
  38.     (gimp-context-push)
  39.  
  40.     (gimp-image-undo-disable img)
  41.     (gimp-image-add-layer img bg-layer 1)
  42.     (gimp-image-add-layer img text-layer -1)
  43.  
  44.     (gimp-context-set-background bg-color)
  45.     (gimp-edit-clear bg-layer)
  46.     (gimp-edit-clear text-layer)
  47.  
  48.     (gimp-floating-sel-anchor (car (gimp-text-fontname img text-layer 10 10 string 0 TRUE font-size PIXELS font)))
  49.  
  50.     ; save the selection for later
  51.     (gimp-selection-layer-alpha text-layer)
  52.     (set! saved-sel (car (gimp-selection-save img)))
  53.  
  54.     ; add layer mask
  55.     (set! text-mask (car (gimp-layer-create-mask text-layer ADD-ALPHA-MASK)))
  56.     (gimp-layer-add-mask text-layer text-mask)
  57.  
  58.     ; grow the layer
  59.     (gimp-layer-set-edit-mask text-layer FALSE)
  60.     (gimp-selection-grow img 10)
  61.     (gimp-context-set-foreground text-color)
  62.     (gimp-edit-fill text-layer FOREGROUND-FILL)
  63.  
  64.     ; feather the mask
  65.     (gimp-layer-set-edit-mask text-layer TRUE)
  66.     (gimp-selection-load saved-sel)
  67.     (gimp-selection-feather img 10)
  68.     (gimp-context-set-background (list grey grey grey))
  69.     (gimp-edit-fill text-mask BACKGROUND-FILL)
  70.     (gimp-edit-fill text-mask BACKGROUND-FILL)
  71.     (gimp-edit-fill text-mask BACKGROUND-FILL)
  72.     (gimp-selection-none img)
  73.  
  74.     (plug-in-newsprint RUN-NONINTERACTIVE img text-mask cell-size 0 0 0.0 1 45.0 0 45.0 0 45.0 0 5)
  75.  
  76.     (gimp-layer-remove-mask text-layer MASK-APPLY)
  77.  
  78.     (gimp-image-undo-enable img)
  79.     (gimp-display-new img)
  80.  
  81.     (gimp-context-pop)
  82.   )
  83. )
  84.  
  85. (script-fu-register "script-fu-speed-text"
  86.   _"Speed Text..."
  87.   _"Create a logo with a speedy text effect"
  88.   "Austin Donnelly"
  89.   "Austin Donnelly"
  90.   "1998"
  91.   ""
  92.   SF-STRING     _"Text"               "Speed!"
  93.   SF-FONT       _"Font"               "Charter"
  94.   SF-ADJUSTMENT _"Font size (pixels)" '(100 2 1000 1 10 0 1)
  95.   SF-ADJUSTMENT _"Density (%)"        '(80 0 100 1 10 0 0)
  96.   SF-COLOR      _"Text color"         "black"
  97.   SF-COLOR      _"Background color"   "white"
  98. )
  99.  
  100. (script-fu-menu-register "script-fu-speed-text"
  101.                          "<Image>/File/Create/Logos")
  102.